home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -serious- / misc / dvi2tty-5.1 / dvi2tty.dcl < prev    next >
Text File  |  1999-09-06  |  1KB  |  56 lines

  1. $ !
  2. $ !    Compile dvi2tty for VAX/VMS under VAXC
  3. $ !
  4. $ !
  5. $ !    April 25, 1990
  6. $ !
  7. $ !    Robert Schneider
  8. $ !    Department of Petroleum Engineering
  9. $ !    The University of Texas at Austin
  10. $ !    < robert@perv.pe.utexas.edu >
  11. $ !
  12. $ SAY = "WRITE SYS$OUTPUT"
  13. $ ASK = "INQUIRE /NOPUNCTUATION ANSWER"
  14. $ !
  15. $ !    You can stick options for the C compiler in CC_DEFINES.  As
  16. $ !    an example you can be redundant and define CC_DEFINES to be
  17. $ !    "/DEFINE=VMS".
  18. $ !
  19. $ CC_DEFINES = ""
  20. $ !
  21. $ SAY " "
  22. $ ASK "Compile sources?  "
  23. $ inquire_test = ANSWER .eqs. "Y"
  24. $ if .not. inquire_test then goto linkstep
  25. $ !
  26. $ SAY " "
  27. $ SAY "Compiling sources ..."
  28. $ SAY " "
  29. $ !
  30. $ SAY "DVI2TTY.C ..."
  31. $ CC 'CC_DEFINES DVI2TTY.C
  32. $ SAY "DVISTUFF.C ..."
  33. $ CC 'CC_DEFINES DVISTUFF.C
  34. $ SAY "DISDVI.C ..."
  35. $ CC 'CC_DEFINES DISDVI.C
  36. $ !
  37. $ linkstep:
  38. $ SAY " "
  39. $ SAY "Linking dvi2tty ..."
  40. $ link /exe=dvi2tty.exe dvi2tty,dvistuff,sys$library:vaxcrtl/lib
  41. $ SAY "Linking disdvi ..."
  42. $ link /exe=disdvi.exe disdvi,sys$library:vaxcrtl/lib
  43. $ SAY " "
  44. $ SAY "Be sure and copy DVI2TTY.EXE to wherever you store your TeX"
  45. $ SAY "images and define the symbol;"
  46. $ SAY " "
  47. $ SAY "$ dvi2tty :== $path:dvi2tty.exe"
  48. $ SAY " "
  49. $ SAY "in your TeX setup command file so it may be accessed.  'path'"
  50. $ SAY "is the directory location where you store your TeX images."
  51. $ SAY " "
  52. $ SAY "Done."
  53. $ SAY " "
  54. $ exit
  55.  
  56.